home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / include / incl98.zoo / file.h < prev    next >
C/C++ Source or Header  |  1993-11-05  |  390b  |  24 lines

  1. #ifndef _FILE_H
  2. #define _FILE_H
  3.  
  4. #ifndef _COMPILER_H
  5. #include <compiler.h>
  6. #endif
  7.  
  8. #ifdef __MINT__
  9. /* lockf() comands */
  10. #define LOCK_SH    1    /* shared lock */
  11. #define LOCK_EX    2    /* exclusive lock */
  12. #define LOCK_NB    4    /* non-blocking */
  13. #define LOCK_UN    8    /* unlock */
  14.  
  15. #define FREAD  1
  16. #define FWRITE 2
  17.  
  18. __EXTERN int        flock    __PROTO((int, int));
  19. #endif
  20.  
  21. #include <fcntl.h>
  22.  
  23. #endif /* _FILE_H */
  24.